crypto/tls.certificateMsgTLS13.certificate (field)
13 uses
crypto/tls (current package)
handshake_client_tls13.go#L523: if len(certMsg.certificate.Certificate) == 0 {
handshake_client_tls13.go#L528: c.scts = certMsg.certificate.SignedCertificateTimestamps
handshake_client_tls13.go#L529: c.ocspResponse = certMsg.certificate.OCSPStaple
handshake_client_tls13.go#L531: if err := c.verifyServerCertificate(certMsg.certificate.Certificate); err != nil {
handshake_client_tls13.go#L646: certMsg.certificate = *cert
handshake_messages.go#L1357: certificate Certificate
handshake_messages.go#L1372: certificate := m.certificate
handshake_messages.go#L1431: !unmarshalCertificate(&s, &m.certificate) ||
handshake_messages.go#L1436: m.scts = m.certificate.SignedCertificateTimestamps != nil
handshake_messages.go#L1437: m.ocspStapling = m.certificate.OCSPStaple != nil
handshake_server_tls13.go#L685: certMsg.certificate = *hs.cert
handshake_server_tls13.go#L908: if err := c.processCertsFromClient(certMsg.certificate); err != nil {
handshake_server_tls13.go#L919: if len(certMsg.certificate.Certificate) != 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |